home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Development Platforms / Apple II / Apple II Sample Code / APW.SC / SC01Shell / Asm.Shell / full.Build < prev    next >
Encoding:
Text File  |  1990-06-20  |  643 b   |  30 lines  |  [TEXT/pdos]

  1. *
  2. *   This exec file does a complete build of
  3. *   the sample application: Shell
  4. *
  5. *   File:         Full.Build
  6. *   Target:       Shell
  7. *   Sources:      Shell.aii
  8. *                 ../Rez.Shell/Shell.rez
  9. *
  10. *   Copyright Apple Computer, Inc. 1988-1990
  11. *   All rights reserved.
  12. *
  13.  
  14. echo "Assembling Shell.aii"
  15. assemble Shell.aii keep=Shell
  16.  
  17. echo "Compiling Shell.rez"
  18. copy -c ../rez.shell/shell.rez shell.rez
  19. compile shell.rez keep=Shell.rfork
  20. delete shell.rez
  21.  
  22. echo "Linking..."
  23. linkiigs Shell.root Shell.a -o Shell.dfork
  24.  
  25. echo "Duplicating data and resource forks..."
  26. duplicate -d Shell.dfork Shell
  27. duplicate -r Shell.rfork Shell
  28.  
  29. echo "Done!"
  30.